/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'orbitron', sans-serif;;
}

/* see  more and less buttons */
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  margin-top: 10px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 183, 255, 0.138);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(0, 163, 239, 0);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  top: 60%;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover a {
  text-decoration: none;
  color: white;
  font-size: medium;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg,  #00ffd5, #00ddff, #00ccff, #00c3ff);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
  
}
::-webkit-scrollbar-track {
  background:aqua;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
  background:url("../images/gpu-shop.webp")  center;
  background-blend-mode:color-dodge;
  background-position: 52%;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #ffffff;
  position:relative;
  font-size: 30px;
  font-weight: 600;
  margin-left: -20px;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
  position: relative;
  left:25px;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 4px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 50px;
  transition: all 0.5s ease;
  background:url("../images/gpu-shop.webp") no-repeat center;
  background-blend-mode: color;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  border-radius: 50px;
  background:url("../images/gpu-shop.webp") no-repeat center;
  background-blend-mode: color;
  color: #ffffff;
}
.sidebar.open .bx-search:hover{
 
  color: #FFF;
  border-radius: 50px;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #11101d;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius:50px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
     background:url("../images/gpu-shop.webp") no-repeat center;
     background-blend-mode: color;
}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
    background:url("../images/gpu-shop.webp") no-repeat center;
  transition: all 0.5s ease;
  overflow: hidden;
  background-blend-mode: color;
}
.sidebar .logo-details .logo1{
  position :relative;
  top:40px;
  height: 120px;
  transition:all 0.5s ease;
  opacity:1;

}
.sidebar .logoname{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar.active .logo_content .logoname{
  font-size: 22px;
  position: absolute;
  top:35px;
  right:65px;
  color: aqua;
  font-weight: 600;
  opacity: 1;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.open .logo-details .logo1{
  position :relative;
  top:15px;
  left:5px;
  height: 120px;
  transition:all 0.5s ease;
  opacity:1;
 
}
  .sidebar li.profile{
    opacity: 0;
  }
.sidebar.open li.profile{
  width: 250px;
  opacity: 1;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
    background:url("../images/gpu-shop.webp") no-repeat center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
  background-blend-mode: color;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}
.picture{
  border-radius: 12px;
  width: 300px;
  
}
#label{
  position:relative; 
  left:5%;
  width: 270px;
  font-family: 'Merriweather', serif; /* Apply the Merriweather font */
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label1{
  position:relative; 
  left:15%;
  width: 270px;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight:bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label2{
  position:relative; 
  left:20%;
  width: 270px;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label3,#label7,#label8,#label9,#label10{
  position:relative; 
  left:5%;
  width: 270px;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label4{
  position:relative; 
  left:5%;
  width: 270px;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label5{
  position:relative; 
  left:25%;
  width: 270px;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}
#label6{
  position:relative; 
  left:10%;
  width: 270px;
  white-space: nowrap;
  color: rgb(0, 0, 0); /* Set the font color to black */
  font-size:20px; /* Adjust the font size as needed */
  font-weight: bold; /* Make the font bold if necessary */
    /* 3D shadow effect */
    text-shadow: 2px 2px 0 #ccc,   /* Light grey shadow */
    4px 4px 0 #999,   /* Medium grey shadow */
    6px 6px 0 #666;   /* Darker grey shadow */
}


#title{
    position: relative;
    left:15%;
    font-size:20px;
    color: #ffffff;
}
 #cuda,#normal,#type{
    position: relative;
    left:-30%;
    top:50%;
    color: aqua;
}  
#cudap,#normalp,#typep{
    position: relative;
    left:-30%;
    top:40%;
    color: #ffffff;
} 
 #tensor,#power,#size{
    position: relative;
    left:60%;
    bottom:120%;
    color: aqua;
} 
#tensorp,#powerp,#sizep{
    position: relative;
    left:60%;
    bottom:190%;
    color: #FFF;
} 
#boost,#boostp,#thermal,#thermalp{
  position: relative;
  left:15%;
  bottom:30%;
  color: #ffffff;
}
#boost,#thermal{
  position: relative;
  left:15%;
  bottom:-5%;
  color: aqua;
}
#title2 {
  position: relative;
  left: 25%;
  font-size: 20px;
  color: #ffffff;
}

 #baseclock, #cores, #cachel1, #tdp, #maxmemory, #thermal2 {
  position: relative;
  left: -35%;
  top: 70%; /* Decreased from 100% to 80% to move it up */
  color:aqua;
  margin-top: -5px;
}

#baseclockp, #coresp, #cachel1p, #tdpp, #maxmemoryp, #thermalp2 {
  position: relative;
  left: -35%;
  top:70%; /* Decreased from 160% to 130% to move it up */
  color: #ffffff;
}

#boostclock, #threads, #cachel2, #processnode, #memorychannels, #sockettype {
  position: relative;
  left: 75%;
  bottom: 130%; /* Increased from 80% to 100% to move it up */
  color: aqua;
  margin-top: -20px;
}

#boostclockp, #threadsp, #cachel2p, #processnodep, #memorychannelsp, #sockettypep {
  position: relative;
  left: 75%;
  bottom: 60%; /* Increased from 80% to 100% to move it up */
  color: #fcfdff;
}

#cachel3, #integratedgraphics, #maxmemoryspeed {
  position: relative;
  left: 25%;
  bottom: -10%; /* Adjusted from -5% to -10% to move it up */
  color: aqua;
}

#cachel3p, #integratedgraphicsp, #maxmemoryspeedp {
  position: relative;
  left: 25%;
  bottom: -10%; /* Adjusted from -5% to -10% to move it up */
  color: #ffffff;
}
#title4 {
  position: relative;
  left: 7%;
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}
 #maxramp, #memoryspeedp,#thermalperformancep, #pcieslotsp, #usbportsp{
  position: relative;
  left: 7%;
  top: 20%;
  color: #ffffff;
 }

 #maxram, #memoryspeed,#thermalperformance, #pcieslots, #usbports {
  position: relative;
  left: 7%;
  top: 10%;
  color: aqua;
 }
 #chipsetp{
  position: relative;
  left: 7%;
  top: 20%;
  color: #ffffff;
 }
 #chipset{
  position: relative;
  left: 7%;
  top: 10%;
  color: aqua;
 }
 #formfactor, #socket, #audiocodec{
  position: relative;
  left: -40%;
  top: 100%;
  color: aqua;
}
#formfactorp, #socketp, #audiocodecp{
  position: relative;
  left: -40%;
  top: 150%;
  color: #ffffff;
}
#networking, #vrm, #m2slots{
  position: relative;
  left: 45%;
  top: -400%;
  color: aqua;
}

#networkingp, #vrmp, #m2slotsp{
  position: relative;
  left:45%;
  top: -620%;
  color: #fcfdff;
}

  #maxramp, #memoryspeedp, #thermalperformancep, #pcieslotsp, #usbportsp {
    position: relative;
    left: 7%;
    top: 20%;
    color: #ffffff;
  }

  /* Style for the heading elements */
  #maxram, #memoryspeed, #thermalperformance, #pcieslots, #usbports {
    position: relative;
    left: 7%;
    top: 10%;
    color: aqua;
  }
  #title3,#title7,#title8,#title9,#title10{
    position: relative;
    left: 0%;
    top:25%;
    font-size: 20px;
    color: #ffffff;
  }
  /* Style for paragraph elements like in the example */
  #memorytypep, #capacityp, #speedp, #caslatencyp, #voltagep, #rgbp, #compatibilityp, #coolingp,#brandp,#resolutionp,#refreshRatep,#sizemp,#responseTimep,#panelTypep,#gSyncp,#freeSyncp,#dpip,#buttonsp,#sensorp,#connectionp,#batterylifep,#switchtypep,#backlightp,#keyrolloverp,#type2p,#interfacep,#readspeedp,#writespeedp,#formfactorp,#brandp1,#wattagep,#efficiencyp,#modularityp,#fanp{
    position: relative;
    position: relative;
    left: 0%;
    top: 70%;
    color: #ffffff;
  }

  /* Style for heading elements like in the example */
  #memorytype, #capacity, #speed, #caslatency, #voltage, #rgb, #compatibility, #cooling,#brand,#resolution,#refreshRate,#sizem,#responseTime,#panelType,#gSync,#freeSync,#dpi,#buttons,#sensor,#connection,#batterylife,#switchtype,#backlight,#keyrollover,#type2,#interface,#readspeed,#writespeed,#formfactor,#brand1,#wattage,#efficiency,#modularity,#fan{
    position: relative;
    left: 0%;
    top:40%;
    color: aqua;
  }




#value {
  position: relative;
  margin-left: -105px;
  top: 61.5%;
}
  



main h1{
    position: relative;
    color:rgb(0, 0, 0);
    left: 10%;
    
}
main h2{
    position: relative;
    font-size: xx-large;
    top:60%;
    right:43%;
    color: aqua;
    text-shadow: 
    -1px 2px 1px #00bfbf, -2px 4px 1px #00afaf, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
    
}
main h3{
    position: relative;
    top:60%;
    font-size:xx-large;
    right:30%;

    color: aqua;
    text-shadow: -1px 2px 1px #00bfbf, -2px 4px 1px #00afaf, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
   

}
#title5 {
  position: relative;
  left: 25%;
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}
#cpu,#ram,#psu,#storagetype,#averagefps14,#display{
  position: relative;
  left: -25%;
  top: 70%;
  color: #ffffff;
}
#gpu,#motherboard,#case,#storage,#averagefps18{
  position: relative;
  left: 70%;
 bottom: 110%;
  color: #ffffff;
}
#cpup,#ramp,#psup,#storagetypep,#averagefps14p,#displayp{
  position: relative;
  left: -25%;
  top: 70%;
  color: aqua;
}
#gpup,#motherboardp,#casep,#storagep,#averagefps18p{
  position: relative;
  left: 70%;
  top: -200%;
 color: aqua;
}
#title6 {
  position: relative;
  left: 22%;
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}

#cooling2{
  position: relative;
  left: 70%;
  top: -100%;
  color: white;
}
#cooling2p{
  position: relative;
  left: 70%;
  top: -180%;
  color: aqua;
}
#battery{
  position: relative;
  left: 22%;
  top: 0%;
  color: white;
}
#batteryp{
  position: relative;
  left: 22%;
  top: 0%;
}
#averagefps{
  position: relative;
  left: 22%;
  top: 0%;
  color: white;
}
#averagefpsp{
  position: relative;
  left: 22%;
  top: 0%;
}


#averagefps4{
  position: relative;
  bottom :450%;
  left: 25%;
  color: white;
  }
    #averagefps4p{
      position: relative;
      left: 25%;
      color: aqua;
      top: -700%;
      }
 #rampp2{
  position: relative;
  left: -20%;
  top: 70%;
  color: aqua;
 }

  nav {
    grid-area: nav;
    border-radius: 12px;
    padding-top: 10px;
    
  }
  main img{
    position: relative;
    max-width: 100%;
    height: 100%;
    top: -25%;
    z-index: 0;
  }
  main {
    grid-area: main;
    padding-top:10px;
    padding: 10px;
    height: 500px;
    width: 1000px;
    padding-bottom: 15px;
    border-radius:12px;
  }
  #sidebarmb,#sidebarram,#sidebarcpu,#sidebargpu,#sidebarlaptop {
    grid-area: sidebar;
    display: grid;
    justify-content:space-between ;
    position: relative;
    left: -25%;
    height: 500px;
    font-size: 10px;
    border-radius: 12px;
    margin-right: 20px;
    padding-top: 0px;
    padding-bottom: 200px;
    background: rgba(221, 240, 255, 0.078);
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(223, 228, 232, 0.225);
   
  }
  #sidebarram{
    width:400px;
    position: relative;
    justify-content:center;
    left: 0%;

  }
  @-moz-document url-prefix() {
    /* Firefox-specific styles */
    #sidebarcpu {
      position: relative;
      left: -2%;
    }
  }

  #sidebarcpu {
    width: 550px;
    position: relative;
    padding-left: 90px;
    padding-right: 50px;
  }
  #sidebarcpu1 {
    width: 470px;
    grid-area: sidebar;
    display: grid;
    justify-content:space-between ;
    position: relative;
    left: -2%;
    height: 500px;
    font-size: 10px;
    border-radius: 12px;
    margin-right: 20px;
    padding-top: 0px;
    padding-bottom: 200px;
    background: rgba(221, 240, 255, 0.078);
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(223, 228, 232, 0.225);
    padding-left: 45px;
    padding-right: 50px;
  }
  #sidebarlaptop{
    width:470px;
    position: relative;
    left: -10%;
    padding-left: 50px;

  }
  #sidebarmb{
    width:470px;
    position: relative;
    left: -10%;
    justify-content:center;

  }
  #sidebargpu{
    width:450px;
    position: relative;
    left: -10%;
    padding-left: 50px;

  }

  #content1 {
    grid-area: content1;
    border-radius: 12px;
    padding-top: 10px;
    width:max-content;

  }
  
  #content2 {
    grid-area: content2;
    display: grid;
    justify-items: center;
    border-radius:12px;
    padding-top: 10px;
    width:max-content;
  }
  
  #content3 {
    grid-area: content3;
    border-radius: 12px;
    display: grid;
    justify-items: center;
    width:max-content;
    margin-left: -15px;
    padding-top:10px;
   
  }
  #content3 h2{
    color: rgb(255, 0, 0);
  }
 
  footer {
    grid-area: footer;
    display: grid;
    justify-items: center;
    border-radius:12px;
    margin-right:-150px;
    padding-top: 10px;
    padding-right: 65px;
    width:max-content;
    
  }
  #last{
    grid-area:last;
    display: grid;
    justify-items: center;
    border-radius: 12px;
    padding-top: 70px;
    margin-right: 0;
    margin-left: 2px;
    padding: 15px;
    height:450px;
  }

  co
/* ── COPYRT / FOOTER ──
   Full-width glass bar, styled to match the existing
   semi-transparent glass panels already on the page. */
copyrt {
  grid-area: copyrt;
  display: block;
  width: 100%;

}

.footer-glass {
  width: 500%;
  background: rgba(0, 20, 30, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-top: 1px solid rgba(0, 255, 255, 0.18);
  padding: 16px 40px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
   position :relative;
  bottom:-50%;
 
}

/* Thin cyan divider line between brand row and disclaimer */
.footer-divider {
  width: 45%;
  height: 1px;
  border: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.3) 30%,
    rgba(0, 220, 255, 0.55) 50%,
    rgba(0, 255, 255, 0.3) 70%,
    transparent
  );
  margin: 2px 0;
}

/* Brand row: "Created By WAREWYSE | © 2026 All rights reserved." */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(0, 255, 255, 0.55);
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-brand a#copyrighta {
  color: aqua;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-brand a#copyrighta:hover {
  color: #ffffff;
}
.footer-brand .fsep {
  color: rgba(0, 255, 255, 0.25);
}

/* Disclaimer text */
.footer-disclaimer {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  color: rgba(0, 220, 230, 0.38);
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.85;
  text-transform: uppercase;
  max-width: 900px;
}
.footer-disclaimer strong {
  color: rgba(0, 255, 255, 0.52);
  font-weight: 600;
}
 #copyright{
    color: #ffffff;
    text-align: center;
    position:relative; 
    top:50%;
}
#copyrighta {
    color: rgba(0, 193, 255,1);
    text-decoration: none;
}
#copyirighta:hover{
    text-decoration: underline;
}

  footer .chart-canvas{
   width:950px;
   height:400px;
  }

 .logo10 a{
    color: #E4E9F7;
    font-size: 35px;
  font-weight: 600;
  text-decoration-line:none;
  }
 .logo10 a span{
   color:aqua;
   transition: all 0.3s ease;
  }
 .logo1 {
  width: 50px;
  height: 90px !important;
}

	.height {
		height: 10px;
	}
		
	/* Image-container design */
	.image-container {
		max-width: 800px;
		position: relative;
		margin: auto;
	}
		
	.next {
		right: 0;
	}
		
	/* Next and previous icon design */
	.previous,
	.next {
		cursor: pointer;
		position: absolute;
		top: 50%;
		padding: 10px;
		margin-top: -25px;
	}
		
	/* caption decorate */
	.captionText {
		color: #000000;
		font-size: 14px;
		position: absolute;
		padding: 12px 12px;
		bottom: 8px;
		width: 100%;
		text-align: center;
	}
		
	/* Slider image number */
	.slideNumber {
		background-color: rgb(0, 255, 255);
		color: rgb(0, 0, 0);
		border-radius: 25px;
		right: 15px;
		opacity: .5;
		margin: 5px;
		width:fit-content;
    padding-left: 5px;
    padding-right: 5px;
    padding-top:0;
    padding-bottom: 10px;
		height: 30px;
		text-align: center;
		font-weight: bold;
		font-size: 24px;
		position: absolute;
	}
	.fa {
		font-size: 32px;
	}
		
	.fa:hover {
		transform: rotate(360deg);
		transition: 1s;
		color: white;
	}
		
	.footerdot {
		cursor: pointer;
		height: 15px;
		width: 15px;
		margin-left:  2px;
    margin-top: 0;
    margin-bottom:0;
		background-color: #5555;
		border-radius: 50%;
		display: inline-block;
		transition: background-color 0.5s ease;
	}
		
.footerdot:hover {
		background-color:aqua;
	}

.footerdot.active {
		background-color:aqua;
	}
.selectBox.active{
 opacity: 1;
 position: relative;
 
}
.chart-canvas{
  border-radius: 12px;
}
.selectBox {
  display: flex;
  width: 400px;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  

}

.selectBox .options-container {
  background:  #2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  order: 1;
}

.selected2 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected2 {
  padding: 12px 24px;
  cursor: pointer;
}

.selectBox .option:hover {
  background: #414b57;
}

.selectBox label {
  cursor: pointer;
}

.selectBox .option .radio {
  display: none;
}

.selected2 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected2 {
  padding: 12px 24px;
  cursor: pointer;
}


.selected1 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected1::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected1::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected1 {
  padding: 12px 24px;
  cursor: pointer;
}





.selected3 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected3::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected3::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected3 {
  padding: 12px 24px;
  cursor: pointer;
}





.selected4{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected4::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected4::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected4 {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;

  margin-bottom: 10px;
  height: 350px;
  width: 300px;
}









/* select-box//*/


.namer2{
  position:absolute;
  left: 74%;
  top:111%;
}
.select-box {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;

}

.select-box .options-containerfooter1 {
  background: #2f3640;;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;
  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box .options-containerfooter1.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box .options-containerfooter1.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-containerfooter1::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-containerfooter1::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #414b57;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}
/*selectedfooter2*/
.select-box .options-containerfooter2 {
  background: #2f3640;;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}


.select-box .options-containerfooter2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box .options-containerfooter2.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-containerfooter2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-containerfooter2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #414b57;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}
/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box .options-containerfooter1.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
.select-box .options-containerfooter2.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}






.select-box1 {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;
  left: 0%;
  bottom: -10%;
}


.select-box1 .options-container1 {
  background:#2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box1 .options-container1.active {
  max-height: 240px;
  opacity:1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box1 .options-container1.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box1 .options-container1::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box1 .options-container1::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box1 .option,
.selected
 {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box1 .option:hover {
  background: #414b57;
}

.select-box1 label {
  cursor: pointer;
}

.select-box1 .option .radio {
  display: none;
}

/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box1 .options-container1.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
/** select-box2*/


.select-box2 {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;
  left: 0%;
  bottom:30%;
}

.select-box2 .options-container2 {
  background: #2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box2 .options-container2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box2 .options-container2.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box2 .options-container2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box2 .options-container2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box2 .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box2 .option:hover {
  background: #414b57;
}

.select-box2 label {
  cursor: pointer;
}

.select-box2 .option .radio {
  display: none;
}

/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box2 .options-container2.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
/*footer*/


.selectedfooter1{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  position:relative;
  color: #f5f6fa;
  order: 0;
}

.selectedfooter1::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-containerfooter1.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selectedfooter1::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedfooter1 {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;

  margin-bottom: 10px;
  height: 350px;
  width: 300px;
}

/*footer da second*/

.selectedfooter2{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedfooter2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-containerfooter2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-containerfooter2.active + .selectedfooter2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-containerfooter2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-containerfooter2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedfooter2 {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;

  margin-bottom: 10px;
  height: 350px;
  width: 300px;
}
/*selected-gpu*/


.selectedgpu{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedgpu::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 0;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selectedgpu::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedgpu {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;

  margin-bottom: 10px;
  height: 350px;
  width: 300px;
}
/*selected-cpu*/

.selectedcpu{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedcpu::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selectedcpu::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedcpu {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;
  margin-bottom: 10px;
  height: 350px;
  width: 280px;
  
}
#content1 .chart-canvas{
  height: 350px;
  width:580px;
}
main .chart-canvas{
  width: 100%;
  background-color:#11101D;
}
/* MOBILE VERSION*/
#notificationCount{
  display: inline-block; /* Allows for setting width and height */
  width: 24px; /* Set width */
  height: 24px; /* Set height */
  border-radius: 50%; /* Makes it circular */
  background-color: red; /* Background color of the bubble */
  color: white; /* Text color */
  text-align: center; /* Center the text */
  line-height: 24px; /* Center the text vertically */
  font-size: 14px; /* Font size */
  position: absolute; /* Allows positioning relative to parent */
  top: -9px; /* Adjust based on your layout */
  right: -13px; /* Adjust based on your layout */
}

#custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 1000;
}
  /* Modal content box */
  .modal-content {
    background: rgba(226, 242, 255, 0.268);
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0);
    margin: 15% auto; /* Center the modal */
    padding: 20px;
    width: 400px;
    height: 150px;
    max-width: 400px; /* Limit modal width */
    text-align: center;
    border-radius: 8px;
  }

  /* Style for the alert message */
  #alert-message {
    margin-bottom: 20px;
    color: #fff;
    font-size: large;
  }

  #alert-ok-btn{
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0);
      align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    outline: none;
    overflow: hidden;
    font-size: 15px;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  #alert-ok-btn:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  #alert-ok-btn:hover .icon {
    transform: translate(4px);
  }
  #alert-ok-btn:hover {
    background-color:rgba(0, 255, 255, 0.884);
  }
  #alert-ok-btn {
   background-color: rgba(0, 0, 0, 0.729);
    padding: 10px 20px;
    border: none;
    width: 100px;
    cursor: pointer;
    border-radius: 4px;
  }

  #alert-ok-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  #alert-ok-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  @media only screen and (max-width: 800px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }  
    .glow-on-hover {
      border: none;
      margin-left: -5px;
      outline: none;
      cursor: pointer;
      position: relative;
      top:190%;
      z-index: 99;
      border-radius: 10px;
    }
    body{
      width: 100%;
      height: 100%;
      transform: scale(0.55)!important; /* Forces a 1x zoom */
      transform-origin: 0 0; /* Ensures scaling is from the top-left corner */
      overflow-y: hidden!important;
      background-size: cover;
      background:url("../images/background.webp") no-repeat center;
      margin-bottom: 300px!important;
    }
    #sidebarmb,#sidebarram,#sidebarcpu,#sidebargpu,#sidebarlaptop,#sidebarcpu1 {
      position: relative;
      left: -10%;
      padding-left: 50px;
    }
    .container{
    width:200%!important;
    height: 500%!important;
    background:url("../images/background.webp") no-repeat center!important;
  }
    #sidebar h1{
      font-size: medium;
    }
    #sidebar h2{
      font-size: small;
    }
    #sidebar p{
    font-size: smaller;
    }
    #sidebar #cuda{
      position: relative;
      margin-top: 5px;
      font-size: small;
  
    }
    #label{
      font-size: medium;
    }
    #sidebar #tensor{
      position: relative;
      margin-top: 5px;
      font-size: small;
    }
    main img{
      position: relative;
      top:-30%;
      width:200px;
      height: 200px;
    
    }
    main h2{
      font-size: 27px;
      position: relative;
      top:225%;
      margin-left: 53px;
    }
    #value{
      font-size: 27px;
      position: relative;
      top:209.5%;
      margin-left: 135px;
    }
    #buy{
      position:relative;
      margin-top: 45px;
      
    }
    #buy a{
      position: absolute;
      top:17%;
      z-index: 99;
      left:12%;
      
    }
  .slideNumber{
    font-size: 10px;
    height: 15px;
    position: absolute;
    right:0;
  }
  
  #sidebar{
    position:relative;
    margin-left: 0;
    width: 97%;
    margin-top: 0;
  }
  
   main{
    position:relative;
    margin-top: 10px;
    width:97%;
    height: 250px;
  } 
  main .chart-canvas{
    height:200px;
    
  }
  
  }
  
  